Std 12th IT Subject (Science Stream)
<!DOCTYPE html>
<html>
<head>
<title>Audio with controls</title>
</head>
<body>
<h1>Audio With Single Source</h1>
<audio loop="-1" autoplay controls>
<source src="Song.mp3" type="audio/mp3">
</audio>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Audio with controls</title>
</head>
<body>
<h1>Audio With Multiple Source</h1>
list of Audio files
<ol>
<li>Song.mp3</li>
<li>Song.ogg</li>
<li>Song.wav</li>
</ol>
<audio autoplay controls>
<source src="Song.mp3" type="audio/mp3">
<source src="Song.ogg" type="audio/ogg">
<source src="Song.wav" type="audio/wav">
Your computer doesn't support audio file
</audio>
</body>
</html>